@tapjs/processinfo
A Node.js loader to track processes and which JavaScript files they load.
After the process has run, all wrapped process info is dumped to
.tap/processinfo
.
The exported object can also be used to spawn processes, clear the
processinfo data, or load the processinfo data.
USAGE
Run the top level process with a --loader
or --require
argument to
track all Node.js child processes.
node --loader=@tapjs/processinfo/loader file.js
node --import=@tapjs/processinfo/import
To spawn a wrapped process from JavaScript, you can run:
import {
spawn,
exec,
execFile,
execSync,
execFileSync,
fork,
} from '@tapjs/processinfo'
const childProcess = spawn(cmd, args, options)
const childProcess = exec(cmd, options, callback)
const childProcess = execFile(cmd, options, callback)
const childProcess = spawnSync(cmd, args, options)
const childProcess = execSync(cmd, options)
const childProcess = execFileSync(cmd, options)
const childProcess = fork(cmd, options)
The cmd
and args
parameters are identical to the methods from the
Node.js child_process
module. The options
parameter is also identical,
but may also include an externalID
field, which if set to a string, will
be used as the processinfo externalID
.
If you just use the normal spawn
/exec
methods from the Node.js
child_process
module, then the relevant environment variables will still
be tracked, unless explicitly set to ''
or some other value.
Important
In order to properly track lineLengths
(required for coverage
reporting on source mapped files), @tapjs/processinfo
must be
the last loader specified on the command line, so that it can
get access to the transpiled source that Node.js actually
executes.
Interacting with Process Info
To load the process info data, use the exported ProcessInfo
class.
import { ProcessInfo } from '@tapjs/processinfo'
const processInfoDB = await ProcessInfo.load()
const proc = processInfoDB.externalIDs.get('foo')
console.error(`Files loaded by process named 'foo':`, proc.files)
for (const f of proc.files) {
for (const otherProc of processInfoDB.files.get(f)) {
for (let parent = otherProc; parent; parent = parent.parent) {
if (parent.externalID && parent !== proc) {
console.error(`Also loaded by process ${parent.externalID}`)
}
}
}
}
Note: unless there has been a previous wrapped process run, nothing will be
present in the data. That is, data.root
will be null, and all the maps
will be empty.
Controlling Coverage
To disable coverage entirely, set
_TAPJS_PROCESSINFO_COVERAGE_=0
in the environment.
To exclude certain file paths from coverage with a pattern, set
the _TAPJS_PROCESSINFO_COV_EXCLUDE_
to a regular expression
string. Note that processinfo will never provide coverage for a
file that's excluded from process file tracking.
To exclude specific individual file paths from coverage, set the
_TAPJS_PROCESSINFO_COV_EXCLUDE_FILES_
to a \n
delimited
set of file paths.
To include only a specific set of files for coverage (as with
node-tap's coverage-map
option), set
_TAPJS_PROCESSINFO_COV_FILES_
to a \n
delimited list of the
files to include. These will have their coverage reported even if
they would be excluded by the _TAPJS_PROCESSINFO_COV_EXCLUDE_
regexp or _TAPJS_PROCESSINFO_COV_EXCLUDE_FILES_
list.
Note that coverage instrumentation is by necessity enabled for
all files, but it's only written to disk if the file (or any of
its sources, if it has a sourcemap) is included.